home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / OP.C < prev    next >
Text File  |  1992-02-15  |  159b  |  14 lines

  1. main()
  2. {
  3.  
  4.     int a=10, b=20, c;
  5.  
  6.     c = a + b;
  7.     printf("c is %d\n",c);
  8.     /*c = a--b;
  9.     printf("c is %d\n",c);*/
  10.     c = a- -b;
  11.     printf("c is %d\n",c);
  12.  
  13. }
  14.